home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE23 / SURVIVE / fmpymt.dfm / fmpymt.txt
Text File  |  1997-05-19  |  4KB  |  195 lines

  1. object frmPayment: TfrmPayment
  2.   Left = 225
  3.   Top = 154
  4.   Width = 483
  5.   Height = 377
  6.   BorderIcons = [biSystemMenu]
  7.   Caption = 'Payment'
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object grpOutstandingCredits: TGroupBox
  18.     Left = 8
  19.     Top = 6
  20.     Width = 460
  21.     Height = 147
  22.     Caption = ' Outstanding Credits '
  23.     TabOrder = 0
  24.     object grdCredits: TDBMultiGrid
  25.       Left = 6
  26.       Top = 16
  27.       Width = 320
  28.       Height = 120
  29.       DataSource = dsCreditsOut
  30.       Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit]
  31.       TabOrder = 0
  32.       TitleFont.Color = clWindowText
  33.       TitleFont.Height = -11
  34.       TitleFont.Name = 'MS Sans Serif'
  35.       TitleFont.Style = []
  36.       DataField = 'CREDITNO'
  37.       OnSelected = grdCreditsSelected
  38.     end
  39.     object btnSelectAll: TButton
  40.       Left = 355
  41.       Top = 46
  42.       Width = 75
  43.       Height = 25
  44.       Caption = 'Select All'
  45.       TabOrder = 1
  46.       OnClick = btnSelectAllClick
  47.     end
  48.     object btnClearAll: TButton
  49.       Left = 355
  50.       Top = 75
  51.       Width = 75
  52.       Height = 25
  53.       Caption = 'Clear All'
  54.       TabOrder = 2
  55.       OnClick = btnClearAllClick
  56.     end
  57.   end
  58.   object grpPayment: TGroupBox
  59.     Left = 8
  60.     Top = 156
  61.     Width = 460
  62.     Height = 153
  63.     Caption = ' Payment '
  64.     TabOrder = 1
  65.     object grdPayment: TStringGrid
  66.       Left = 11
  67.       Top = 14
  68.       Width = 260
  69.       Height = 130
  70.       ColCount = 2
  71.       DefaultColWidth = 128
  72.       DefaultRowHeight = 20
  73.       RowCount = 8
  74.       Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goAlwaysShowEditor]
  75.       ScrollBars = ssVertical
  76.       TabOrder = 0
  77.       OnSetEditText = grdPaymentSetEditText
  78.       RowHeights = (
  79.         20
  80.         20
  81.         20
  82.         20
  83.         20
  84.         20
  85.         20
  86.         20)
  87.     end
  88.     object grpTotals: TGroupBox
  89.       Left = 281
  90.       Top = 9
  91.       Width = 171
  92.       Height = 96
  93.       Caption = ' Totals '
  94.       TabOrder = 1
  95.       object Label1: TLabel
  96.         Left = 8
  97.         Top = 17
  98.         Width = 65
  99.         Height = 13
  100.         Caption = 'Credits to Pay'
  101.       end
  102.       object Label2: TLabel
  103.         Left = 8
  104.         Top = 43
  105.         Width = 41
  106.         Height = 13
  107.         Caption = 'Payment'
  108.       end
  109.       object Label3: TLabel
  110.         Left = 8
  111.         Top = 69
  112.         Width = 62
  113.         Height = 13
  114.         Caption = 'Balance Due'
  115.       end
  116.       object edtTotalToPay: TEdit
  117.         Left = 91
  118.         Top = 13
  119.         Width = 70
  120.         Height = 22
  121.         Font.Color = clBlack
  122.         Font.Height = -11
  123.         Font.Name = 'Courier New'
  124.         Font.Style = []
  125.         MaxLength = 10
  126.         ParentColor = True
  127.         ParentFont = False
  128.         ReadOnly = True
  129.         TabOrder = 0
  130.       end
  131.       object edtTotalPaid: TEdit
  132.         Left = 91
  133.         Top = 39
  134.         Width = 70
  135.         Height = 22
  136.         Font.Color = clBlack
  137.         Font.Height = -11
  138.         Font.Name = 'Courier New'
  139.         Font.Style = []
  140.         MaxLength = 10
  141.         ParentColor = True
  142.         ParentFont = False
  143.         ReadOnly = True
  144.         TabOrder = 1
  145.       end
  146.       object edtBalanceDue: TEdit
  147.         Left = 91
  148.         Top = 65
  149.         Width = 70
  150.         Height = 22
  151.         Font.Color = clBlack
  152.         Font.Height = -11
  153.         Font.Name = 'Courier New'
  154.         Font.Style = []
  155.         MaxLength = 10
  156.         ParentColor = True
  157.         ParentFont = False
  158.         ReadOnly = True
  159.         TabOrder = 2
  160.       end
  161.     end
  162.     object btnAllocation: TButton
  163.       Left = 296
  164.       Top = 112
  165.       Width = 147
  166.       Height = 25
  167.       Caption = 'Allocate Payment'
  168.       TabOrder = 2
  169.       OnClick = btnAllocationClick
  170.     end
  171.   end
  172.   object btnPost: TButton
  173.     Left = 158
  174.     Top = 316
  175.     Width = 75
  176.     Height = 25
  177.     Caption = 'Post'
  178.     TabOrder = 2
  179.   end
  180.   object btnCancel: TButton
  181.     Left = 245
  182.     Top = 316
  183.     Width = 75
  184.     Height = 25
  185.     Caption = 'Cancel'
  186.     TabOrder = 3
  187.     OnClick = btnCancelClick
  188.   end
  189.   object dsCreditsOut: TDataSource
  190.     DataSet = dmDataModule.qryCreditsOutByCustomer
  191.     Left = 19
  192.     Top = 72
  193.   end
  194. end
  195.